home *** CD-ROM | disk | FTP | other *** search
- #ifndef _TIPMAIL_H
- #define _TIPMAIL_H
-
- struct tipcb {
- struct tipcb *next;
- struct proc *proc;
- struct proc *in;
- struct iface *iface;
- struct timer timer;
- int (*rawsave) (struct iface *,struct mbuf *);
- int s;
- int echo;
- char keep;
- char modem;
- char firstwarn;
- char raw;
- int asy_dev;
- unsigned default_timeout;
- unsigned timeout;
- };
-
- #define NULLTIP (struct tipcb *)0
-
- #ifndef _COMMANDS_H
- int tipstart (int argc,char *argv[],void *p);
- int tip0 (int argc,char const *argv[],void *p);
- int telnet0 (int argc,char *argv[],void *p);
- int telnet1 (int argc,char *argv[],void *p);
- #endif
-
-
- #endif /* _TIPMAIL_H */
-
-